CallGraph
static.cpp
Go to the documentation of this file.
00001 #include "static.h"
00002 
00003 wxString stvariables::dotpngname;
00004 wxString stvariables::dottxtname;
00005 wxString stvariables::dotfilesdir;
00006 wxString stvariables::gmonfile;
00007 wxString stvariables::filetype;
00008 wxString stvariables::gprofname;
00009 wxString stvariables::dotname;
00010 
00011 wxString stvariables::sd;
00012 wxString stvariables::sw;
00013 wxString stvariables::sq;
00014 
00015 
00016 void stvariables::InicializeStatic()
00017 {
00018         sq = wxT("\"");
00019         sw = wxT(" ");
00020         dotpngname = wxT("dot.png");
00021         dottxtname = wxT("dot.txt");
00022         gmonfile = wxT("gmon.out");
00023         dotfilesdir = wxT("CallGraph");
00024         sd = wxFileName::GetPathSeparator(); 
00025         
00026 #ifdef __WXMSW__
00027         gprofname = wxT("gprof.exe");
00028         dotname = wxT("dot.exe");
00029         filetype = wxT(".exe");
00030 #else
00031         gprofname = wxT("gprof");
00032         dotname = wxT("dot");
00033         filetype = wxT("");     
00034 #endif 
00035 }
00036 
 All Classes Files Functions Variables